2967a2fb6f02c4c1fe78f435666fa63fde24def1,java/java-impl/src/com/intellij/codeInspection/dataFlow/ControlFlowAnalyzer.java,ControlFlowAnalyzer,processSpecialMethods,#PsiMethodCallExpression#,1112
Before Change
return true;
}
else if ("assertNull".equals(methodName)) {
pushParameters(params, true);
addInstruction(new PushInstruction(myFactory.getConstFactory().getNull(), null));
addInstruction(new BinopInstruction("==", null, expression.getProject()));
After Change
return true;
}
else if ("assertFalse".equals(methodName)) {
pushParameters(params, true, !testng);
conditionalExit(exitPoint, true);
return true;
}